home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Candles.dxr / 00001_Startup.ls next >
Encoding:
Text File  |  1998-12-16  |  515 b   |  25 lines

  1. global gMasterData
  2.  
  3. on prepareMovie
  4.   setUserArea(gMasterData, #candles)
  5.   if not activationOn(gMasterData) then
  6.     activate(gMasterData)
  7.   end if
  8.   initFields()
  9.   set the keyDownScript to "quitCatcher"
  10.   cursor(0)
  11. end
  12.  
  13. on stopMovie
  14. end
  15.  
  16. on initFields
  17.   set vEmptyList to ["candle field1", "candle field2"]
  18.   repeat with X in vEmptyList
  19.     set the text of member X to " "
  20.     set the textFont of member X to "Palatino"
  21.     set the textSize of member X to 14
  22.     set the text of member X to EMPTY
  23.   end repeat
  24. end
  25.